/* Copied from code pen for moving title */
/*This is the definition of my wrapper from my HTML */
/*style="font-size:10vw"
*/
.wrapper {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*This is the part that actually makes the title write */
.typing-demo {
  width: 72vw;
  /*This width defines for how many charcaters the cursor is going to keep moving for*/
  animation: typing 3s steps(24), blink .5s step-end infinite alternate;
  /*Typing 3s = The whole word will be typed in 3 secs, Steps(24) = It is going to split the writing
   into 24 steps/parts, Blink .5 = It will blink every 0.5 seconds*/
  white-space: nowrap;
  overflow: hidden;
  /* border-right: What can you change in this? Whose border does this define?
  Change the values below for both 3px and solid. See what happens and then change the comments here*/
  border-right: 3px solid;
  /* font-family - what will happen if you channge this to something else. What else can you use here? */
  font-family: monospace;
  /* font-size - which font's size does this dictate? */
  font-size: 5vw;
}

@keyframes typing {
  from {
    width: 0
  }
}

@keyframes blink {
  50% {
    border-color: transparent
  }
}

/*** End of the style settings for Typing**/
body {
  background-color: #ffffcc;
  padding: 15px
}

table {
  border-collapse: collapse;
}

table,
th,
td {
  border: 3px solid #0a420a;
}

th,
td {
  padding: 10px;
  background-color: #adebad;
}

th {
  text-align: center;
}

td {
  text-align: left;
}

h2 {
  background-color: #003333;
  color: #00ffff;
}

h3 {
  color: #333300
}

title {
  color: #631c66;
}

h1 {
  border: 8px solid #520066;
  border-radius: 40px;
  padding: 5px;
}

.Sarahs_btn:hover {
  background-color: #ff9999;
  height: 40px;
  text-decoration-style: dashed;
}

/*Copied from codepen! For buttons!!! */
/* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #050801;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
}*/
/* This part of the stylesheet creates the style for links (the a tags).*/
a {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  margin: 15px 0;
  color: #03e9f4;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
  margin-right: 50px;
}

a:hover {
  background: #03e9f4;
  color: #050801;
  box-shadow: 0 0 5px #03e9f4,
    0 0 25px #03e9f4,
    0 0 50px #03e9f4,
    0 0 200px #03e9f4;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

a:nth-child(1) {
  filter: hue-rotate(270deg);
}

a:nth-child(2) {
  filter: hue-rotate(110deg);
}

a:nth-child(3) {
  filter: hue-rotate(30deg);
}

a:nth-child(4) {
  filter: hue-rotate(70deg);
}

a:nth-child(5) {
  filter: hue-rotate(200deg);
}

a:nth-child(6) {
  filter: hue-rotate(180deg);
}

a span {
  position: absolute;
  display: block;
}

a span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%, 100% {
    top: 100%;
  }
}

a span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: animate3 1s linear infinite;
  animation-delay: 0.50s;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%, 100% {
    right: 100%;
  }
}

a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%, 100% {
    bottom: 100%;
  }
}